home *** CD-ROM | disk | FTP | other *** search
/ Kyoko 8203 / Kyoko 8203.iso / pc / comic.dxr / 00023_èIóþÅEÉgÉbÉv.ls < prev    next >
Encoding:
Text File  |  2003-03-03  |  323 b   |  28 lines

  1. global page
  2.  
  3. on mouseDown me
  4.   cursor(0)
  5.   page = 1
  6.   mynumber = me.spriteNum
  7.   case mynumber of
  8.     11:
  9.       go(1, "ending")
  10.       updateStage()
  11.     12:
  12.       go(2, "menu")
  13.       updateStage()
  14.   end case
  15. end
  16.  
  17. on mouseEnter me
  18.   cursor([1, 2])
  19. end
  20.  
  21. on mouseLeave me
  22.   cursor(0)
  23. end
  24.  
  25. on mouseWithin me
  26.   cursor([1, 2])
  27. end
  28.